home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000824-20010305 / 000207_news@columbia.edu _Thu Jan 11 15:13:04 2001.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by uhaligani.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id PAA07253
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Thu, 11 Jan 2001 15:13:03 -0500 (EST)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id PAA12230
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 11 Jan 2001 15:13:03 -0500 (EST)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id OAA10503
  10.     for kermit.misc@watsun.cc.columbia.edu; Thu, 11 Jan 2001 14:49:42 -0500 (EST)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: fdc@columbia.edu (Frank da Cruz)
  13. Subject: Re: scripting problem
  14. Date: 11 Jan 2001 19:49:39 GMT
  15. Organization: Columbia University
  16. Message-ID: <93l2oj$a84$1@newsmaster.cc.columbia.edu>
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <3A5DF487.D5E07811@cyberbills.com>,
  20. Victor Zele  <victor@cyberbills.com> wrote:
  21. : I do a set protocol zmodem at the beginning because that's the
  22. : protocol supported by the remote server.
  23. You didn't mention that in your original report.
  24.  
  25. Zmodem is an external protocol in C-Kermit, meaning (a) you need to have
  26. an external Zmodem program, and (b) the Zmodem program must operate on
  27. standard i/o, so Kermit can redirect it over the communications connection.
  28.  
  29. In any case, Kermit seems to be doing its job.  The following:
  30.  
  31.   Retry 0: Timeout on pathname
  32.  
  33. is a message from the Zmodem program (sz or whatever).  So either sz is
  34. not allowing itself to be redirected (in which case you need another
  35. Zmodem program, such crzsz), or else there is an error in your script,
  36. but you didn't show us your script.
  37.  
  38. - Frank